home *** CD-ROM | disk | FTP | other *** search
- /* $Id: FILEOPS.H,v 1.2 1994/02/05 18:44:34 gbj Exp user $ */
-
-
- #ifdef ATARI /* shadow fopen() to fopenx() to translate seperators - DFN */
-
- #undef fopen
- #define fopen fopenx
- FILE *fopenx(const char *, const char *);
-
- #undef remove
- #define remove removex
- int removex(const char *);
-
- #undef rename
- #define rename renamex
- int renamex(const char *, const char *);
-
- #undef open
- #define open openx
- int openx(const char *, int, int);
-
- #undef creat
- #define creat creatx
- int creatx(const char *, int);
-
- #undef unlink
- #define unlink unlinkx
- int unlinkx(const char *);
-
- #undef access
- #define access accessx
- int accessx(const char *, int);
-
- #undef mkdir
- #define mkdir mkdirx
- int mkdirx(const char *);
-
- #endif
-
-